home *** CD-ROM | disk | FTP | other *** search
/ Micro Dingo 39 / Micro_Dingo_39_CD2.mdx / Themes XP / themes / Akuatic overhul 33 / MacOSX.wmz / osxmp.js < prev    next >
Text File  |  2000-10-13  |  491b  |  23 lines

  1. function OnOpenStateChange()
  2. {
  3.     if(player.OpenState == osMediaOpen)
  4.     {
  5.         UpdateMetadata();
  6.     }
  7. }
  8.  
  9. function UpdateMetadata()
  10. {
  11.     metadata.value =
  12.         player.currentmedia.getiteminfo("author");
  13.     var temp = player.currentmedia.name;
  14.     if(temp != "")
  15.     {
  16.         if(metadata.value != "")
  17.         {
  18.             metadata.value +=  " -- ";
  19.         }
  20.         metadata.value += temp;
  21.     }
  22.     metadata.scrolling = metadata.textWidth>metadata.width;
  23. }